home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / p / pov / povlisti.ngs / mandel.pov < prev    next >
Encoding:
Text File  |  1992-04-12  |  3.9 KB  |  101 lines

  1. /* 486/33
  2.  7 hrs 30 min w/ +a0.2 @ 640x480
  3. חלללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללל†
  4. ´  Persistence of Vision Raytracer Ver 1.0.ibmztc                        ´
  5. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  6. ´  mandel.pov statistics                                                 ´
  7. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  8. ´ Image Resolution 640 pixels wide x 480 pixels high                     ´
  9. ´ # Rays Calculated     :      948570                                    ´
  10. ´ # Pixels Calculated   :      307840                                    ´
  11. ´ # Pixels Supersampled :       41874                                    ´
  12. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  13. ´   Ray -» Shape Intersection Tests                                      ´
  14. ´   Type             Tests    Succeeded   Percentage                     ´
  15. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  16. ´  Sphere        173192721      892301        0.52                       ´
  17. ´  Plane           1518161      684706       45.10                       ´
  18. ´  Box            63246765     3866171        6.11                       ´
  19. ´  Bounds         63246765     3866323        6.11                       ´
  20. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  21. ´  Calls to DNoise Routine :          10                                 ´
  22. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  23. ´  Shadow Ray Tests        :     1906897                                 ´
  24. ´  Blocking Objects Found  :      198124                                 ´
  25. ´  Reflected Rays          :      263864                                 ´
  26. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  27. ´  Rendering Time          :       8 hours 59 minutes 45.00 seconds      ´
  28. ´גגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגגג´
  29. זלללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללללל¶
  30. */
  31.  
  32. #include "shapes.inc"
  33. #include "colors.inc"
  34. #include "textures.inc"
  35.  
  36. // Colors are from Fractint's GOODEGA map
  37. // Converted from 0-255 range to PoV's 0-1 range
  38. #declare c0 = 0.0
  39. #declare c84 = 0.328125
  40. #declare c168 = 0.65625
  41. #declare c252 = 0.984375
  42.  
  43. #declare Color1  =  color red c0   green c0   blue c84
  44. #declare Color2  =  color red c0   green c0   blue c168
  45. #declare Color3  =  color red c0   green c0   blue c252
  46. #declare Color4  =  color red c0   green c84  blue c252
  47. #declare Color5  =  color red c0   green c168 blue c252
  48. #declare Color6  =  color red c0   green c252 blue c252
  49. #declare Color7  =  color red c252 green c252 blue c168
  50. #declare Color8  =  color red c252 green c252 blue c0
  51. #declare Color9  =  color red c252 green c168 blue c0
  52. #declare Color10 =  color red c252 green c84  blue c0
  53. #declare Color11 =  color red c252 green c0   blue c0
  54. #declare Color12 =  color red c168 green c0   blue c0
  55. #declare Color13 =  color red c84  green c0   blue c0
  56. #declare Color14 =  color red c252 green c252 blue c84
  57. #declare Color15 =  color red c252 green c84  blue c0
  58. #declare Color16 =  color red c252 green c252 blue c252
  59.  
  60.  
  61.  
  62. camera {
  63.    location <100.0  150.0  -250.0>
  64.    direction <0.0 0.0  1.0>
  65.    up  <0.0  1.0  0.0>
  66.    right <1.33333 0.0 0.0>
  67.    look_at <0 0 0>
  68.  }
  69.  
  70. // Light source
  71. object { light_source { <10 200 -50> color White }}
  72.  
  73. default {
  74.     texture {
  75.         Shiny
  76.         ambient 0.2
  77.         diffuse 0.8
  78.         phong 1 phong_size 100
  79.     }
  80. }
  81.  
  82.  
  83. object {
  84.     plane { <0 1 0> -4.53333  }
  85.     texture {
  86.         color LightGray
  87.         ambient 0.2
  88.         diffuse 0.8
  89.         reflection 0.25
  90.     }
  91. }
  92.  
  93. default { texture { Phong_Shiny ambient 0.1 } }
  94. composite {
  95.     #include "mandel.inc"
  96.     bounded_by {
  97.         box { UnitBox scale <323 174 4> }
  98.     }
  99.     rotate <90 0 0>
  100. }
  101.